Welcome![Sign In][Sign Up]
Location:
Search - udp socket programming

Search list

[Linux-UnixSocket_UDP1.00

Description: udp协议下套接字编程-udp socket programming
Platform: | Size: 14336 | Author: 卢凤晖 | Hits:

[TCP/IP stack全面掌握VisualC#实现UDP协议

Description: 看后对socket编程会有很大的提高,朋友们一定不要错过!-socket programming will be greatly improved, and friends must not miss!
Platform: | Size: 223232 | Author: 雷方 | Hits:

[Internet-Networktcpdup-program

Description: TCP与UDP套接字编程,用C语言开发的-TCP and UDP socket programming, C language development
Platform: | Size: 4096 | Author: 许黎 | Hits:

[Windows Developtcp[1].udp高级编程

Description: Socket高级编程,TCP和UDP都可以-Socket Programming, TCP and UDP can be
Platform: | Size: 3142656 | Author: 张伟 | Hits:

[Internet-Networkudpsocket

Description: 用C语言实现的UDP协议的socket编程,请大家研究研究-C language of the UDP socket programming, please studies
Platform: | Size: 131072 | Author: raul | Hits:

[Internet-NetworkUDP_CS

Description: 利用socket编程,UDP协议,实现数据收发-The use of socket programming, UDP protocol, data transceiver
Platform: | Size: 2325504 | Author: 陈兴锋 | Hits:

[ICQ-IM-Chatudp

Description: 最基本的聊天程序,UDP实现,Socket,便于零基础者初步学习网络套接字编程(注释清晰)-Basic chat program, UDP achieve, Socket, zero basis to facilitate initial learning network socket programming (Note clear)
Platform: | Size: 2048 | Author: 刘文旭 | Hits:

[TCP/IP stackNetwork

Description: 该程序利用MFC 实现WINDOWS下的SOCKET 编程,包括了TCP以及UDP 的不同连接方式-The program using MFC under WINDOWS realize SOCKET programming, including TCP and UDP connections of different
Platform: | Size: 36864 | Author: sunsee | Hits:

[ICQ-IM-ChatMSocUdp

Description: 这个程序是udp socket编程的范例,支持端口到端口的即时聊天,也可以是局域网内的广播通信 /////////////////////////////////// The MSocUdp sample is a minimal dialog box-based MFC application that demonstrates how to use the CAsyncSocket class to send and receive directed datagram or broadcast datagram over User Datagram Protocol (UDP). -This procedure is an example of udp socket programming in support of port-to-port real-time chat, can also be a local area network within the broadcast and communications //////////////////////// /////////// The MSocUdp sample is a minimal dialog box-based MFC application thatdemonstrates how to use the CAsyncSocket class to send and receive directeddatagram or broadcast datagram over User Datagram Protocol (UDP).
Platform: | Size: 4409344 | Author: h | Hits:

[Internet-NetworkUDP

Description: socket编程 : 一个基于UDP协议的通讯实例-socket programming: a communication protocol based on UDP example
Platform: | Size: 9216 | Author: 小君 | Hits:

[TCP/IP stacknet_program_design

Description: 一本介绍网络编程的书籍,首先介绍了网络编程的接口、注意实现等,然后具体详解了TCP、UDP、socket等编程。-Introduced a network programming books, first introduced the network programming interfaces, such as attention to achieve, and then explain the specific TCP, UDP, socket programming, etc..
Platform: | Size: 630784 | Author: 张勇 | Hits:

[Windows DevelopUDP

Description: 基于UDP的简单收发演示,使用Windows API socket编程-The easy to send and receive UDP-based demonstration of the use of Windows API socket programming
Platform: | Size: 67584 | Author: Yang | Hits:

[Internet-NetworkSocket

Description: 内有UDP点对点聊天及TCP.UDP高级编程等相关的详细代码。从事网络编程开发及学习者值得借鉴。-Within the UDP peer-to-peer chat and have TCP.UDP high-level programming code and other related details. Engaged in the development of network programming and learners to learn.
Platform: | Size: 297984 | Author: wangxh | Hits:

[Multimedia programsocket

Description: 编译好的网络通信的socket编程实例,TCP通信与UDP通信-Network compiled examples of socket programming, TCP and UDP communication communication
Platform: | Size: 27648 | Author: 水城男孩 | Hits:

[CSharpudp

Description: it is about socket programming in client side in windows.
Platform: | Size: 36864 | Author: saeid zamani | Hits:

[Internet-Networksocket

Description: tcp udp 网络编程源码 //创建套接字 sHost = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) if(INVALID_SOCKET == sHost) { printf("socket failed!\n") WSACleanup() //释放套接字资源 return -1 } //设置服务器地址 servAddr.sin_family =AF_INET servAddr.sin_addr.s_addr = inet_addr("127.0.0.1") servAddr.sin_port = htons((short)4999) int nServAddlen = sizeof(servAddr) //连接服务器 retVal=connect(sHost,(LPSOCKADDR)&servAddr, sizeof(servAddr)) if(SOCKET_ERROR == retVal) { printf("connect failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 } //向服务器发送数据 ZeroMemory(buf, BUF_SZIE) strcpy(buf, "MyTCP") retVal = send(sHost, buf, strlen(buf), 0) if (SOCKET_ERROR == retVal) { printf("send failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 -tcp udp network programming source code// create a socket sHost = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP) if (INVALID_SOCKET == sHost) (printf ( " socket failed! \ n" ) WSACleanup () // release socket Word of resources return-1 )// set the server address servAddr.sin_family = AF_INET servAddr.sin_addr.s_addr = inet_addr ( " 127.0.0.1" ) servAddr.sin_port = htons ((short) 4999) int nServAddlen = sizeof ( servAddr) // connect to the server retVal = connect (sHost, (LPSOCKADDR) & servAddr, sizeof (servAddr)) if (SOCKET_ERROR == retVal) (printf ( " connect failed! \ n" ) closesocket (sHost) // Close socket WSACleanup () // release the socket resources return-1 )// to the server sending data ZeroMemory (buf, BUF_SZIE) strcpy (buf, " MyTCP" ) retVal = send (sHost, buf, strlen (buf), 0) if (SOCKET_ERROR == retVal) (printf ( " send failed! \ n" ) closesocket (sHost) // close the socket WSACleanup () // release socket resources to return
Platform: | Size: 2048 | Author: 闛靚 | Hits:

[Internet-Networkvisualc-udp-socket

Description: 基于 c# 的socket编程源代码 最终实现了UDP的数据传输-C# for socket-based programming source code eventually the UDP data transmission
Platform: | Size: 124928 | Author: maguang | Hits:

[Internet-NetworkVC_SocketUdp

Description: 简单的 socket编程 UDP通信模式-UDP socket programming simple communication mode
Platform: | Size: 11264 | Author: 贺长富 | Hits:

[TCP/IP stackwindows-Udp-socket

Description: Windows下的socket编程源码,完整的工程,编译通过,无需更改即可使用-Socket programming under Windows source code, complete the project, compile, you can use without having to change
Platform: | Size: 1201152 | Author: 曹乐 | Hits:

[Internet-NetworkUDP-socket-programming

Description: UDP socket编程方面很好的材料,介绍了编程的框架,并给出了例子-UDP socket programming good guidance material
Platform: | Size: 281600 | Author: 王力敏 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 17 »

CodeBus www.codebus.net